home *** CD-ROM | disk | FTP | other *** search
/ Virtual Top Model / Virtual Top Model - Disc 1.iso / modulos / mod-2.dxr / Internal_19_Automático.ls < prev    next >
Encoding:
Text File  |  1997-04-01  |  475 b   |  17 lines

  1. on exitFrame
  2.   set xx to 0
  3.   repeat while not rollOver(33) and (xx < 80) and not (the mouseDown)
  4.     set nPosVer to 75 + xx
  5.     set nPosHor to 404 + xx
  6.     set nVer to ((nPosVer - 71) * -4) + 719
  7.     set nHor to ((nPosHor - 330) * -4) + 787
  8.     set the locV of sprite 31 to nVer
  9.     set the locH of sprite 31 to nHor
  10.     set the locH of sprite 34 to nPosHor
  11.     set the locV of sprite 34 to nPosVer
  12.     updateStage()
  13.     set xx to xx + 2
  14.   end repeat
  15.   go(the frame + 1)
  16. end
  17.